home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------
- #include <condefs.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <iostream.h>
- #include <conio.h>
-
- #pragma hdrstop
- //---------------------------------------------------------------------------
- int main(int argc, char **argv)
- {
- cout << "Hello World!";
- getch();
- return 0;
- }
- //---------------------------------------------------------------------------
-